home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr46 / vfwdk.zip / README.TXT < prev    next >
Text File  |  1993-06-24  |  3KB  |  73 lines

  1. Installation Instructions
  2. ==============================================================
  3. This disk uses a batch file to install the software.  The 
  4. following procedure describes the installation process:
  5.  
  6. 1. From the MS-DOS prompt change to the floppy drive this disk 
  7. is in.  For example, to install from the a: drive use:
  8.  
  9.     "c:> A:"
  10.  
  11. 2. Run the INSTALL batch file.  For example:
  12.     
  13.     "a:> INSTALL C:\VFWDK"
  14.  
  15. Replace C:VFWDK with the disk and path for the destination of
  16. your files.
  17.  
  18. 3. When installation is complete, change your INCLUDE and LIB
  19. environment variables to include the INC and LIB directories in
  20. your destination path.  For example, if you used C:\VFWDK as the
  21. path during installation, you could use the following:
  22.     
  23.     SET INCLUDE=[previous include line];C:\VFWDK\INC
  24.     SET LIB=[previous lib line];C:\VFWDK\LIB
  25.  
  26. For these examples, replace [previous include line] and [previous
  27. lib line] with any existing paths for these statements.
  28.  
  29. 4. You might want to also include the BIN directory to your PATH
  30. variable.  The following example shows the template for modifying
  31. your PATH statement to include the Development Kit's BIN directory:
  32.  
  33.     SET PATH=[previous path line];C:\VFWDK\BIN
  34.  
  35. As in the previous examples, replace [previous path line] with any
  36. existing path statements. 
  37.  
  38.  
  39.  
  40. Known Problems
  41. ==============================================================
  42. DrawDibBegin() doesn't verify the hdc and lpbi parameters.  If 
  43. passed NULL for hdc the function will return TRUE.  If passed a
  44. NULL for lpbi it will GP Fault in msvideo.dll.
  45.  
  46. DrawDibChangePalette() will return TRUE if passed NULL for the 
  47. lppe parameter.
  48.  
  49. DrawDibGetPalette() will return a NULL handle unless you:
  50.   1. call DrawDibBegin() before calling DrawDibGetPalette() 
  51.     - or -
  52.   2. call DrawDibDraw() before calling DrawDibGetPalette()
  53.  
  54. If DrawDibDraw() is passed NULL for the hdd or hdc parameters
  55. you may have problems drawing to that hdd in the future.
  56.  
  57. If you are using MASM 6.x to assemble the sample Bravado driver
  58. then please comment out the lines #129 and #272 in the file
  59. mapa.asm.  
  60.  
  61.  
  62. Unsupported Goodies
  63. ===============================================================
  64. The MCIWnd library is included in this Developer's Kit as an
  65. unsupported library.  You are free to link with mciwnd.lib and 
  66. use the APIs as documented in mciwnd.doc, but do so at your own
  67. risk and the knowledge that PSS will not support this library
  68. or API.   The sample program for MCIWnd is in the [mciplay] 
  69. directory.  Documentation for MCIWnd, in WinWord format, is found
  70. in that directory also.
  71.  
  72.   
  73.